1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include "game.h" Game::Game() { } Game::~Game() { for( FunctionHash::iterator i = hFunction.begin(); i; i++ ) { delete (*i); } for( SituationHash::iterator i = hSituation.begin(); i; i++ ) { delete (*i); } }